home *** CD-ROM | disk | FTP | other *** search
/ Apple Reference & Presen…tion Library 4 (Reseller) / Apple Ref. & Pres. Lib.v4.0.iso / 4-Demos / Apple Demos / Tutorials / Display Card 4•8⁄8•24 Training / Display Card 4•8_8•24 Training / card_3041.txt < prev    next >
Text File  |  1990-03-19  |  3KB  |  151 lines

  1. -- card: 3041 from stack: in
  2. -- bmap block id: 3835
  3. -- flags: 0000
  4. -- background id: 2792
  5. -- name: open 0
  6. ----- HyperTalk script -----
  7. -- Hidden objects on this card:
  8. -- Card Buttons: Lock the Fields, Unlock the fields
  9. -- Card Fields: WhereWasI - holds card name where user left the stack
  10. -- Background Fields: Notes, CardName
  11.  
  12.  
  13. -- part 3 (field)
  14. -- low flags: 01
  15. -- high flags: 0000
  16. -- rect: left=129 top=97 right=117 bottom=509
  17. -- title width / last selected line: 0
  18. -- icon id / first selected line: 0 / 0
  19. -- text alignment: 0
  20. -- font id: 157
  21. -- text size: 14
  22. -- style flags: 0
  23. -- line height: 16
  24. -- part name: cardText
  25.  
  26.  
  27. -- part 1 (button)
  28. -- low flags: 00
  29. -- high flags: 0001
  30. -- rect: left=428 top=317 right=342 bottom=456
  31. -- title width / last selected line: 0
  32. -- icon id / first selected line: 18621 / 18621
  33. -- text alignment: 1
  34. -- font id: 0
  35. -- text size: 12
  36. -- style flags: 0
  37. -- line height: 16
  38. -- part name: 
  39.  
  40.  
  41. -- part 16 (button)
  42. -- low flags: 80
  43. -- high flags: A002
  44. -- rect: left=1 top=283 right=304 bottom=106
  45. -- title width / last selected line: 0
  46. -- icon id / first selected line: 0 / 0
  47. -- text alignment: 1
  48. -- font id: 0
  49. -- text size: 12
  50. -- style flags: 0
  51. -- line height: 16
  52. -- part name: Lock the fields
  53. ----- HyperTalk script -----
  54. on mouseUp
  55.   put 1 into i
  56.   repeat with i = 1 to the number of cards
  57.     repeat with j = 1 to the number of bg flds
  58.       set the locktext of bg fld j to true
  59.       add 1 to j
  60.     end repeat
  61.     repeat with k = 1 to the number of cd flds
  62.       set the locktext of cd fld k to true
  63.       add 1 to k
  64.     end repeat
  65.     add 1 to i
  66.     go card i
  67.   end repeat
  68. end mouseUp
  69.  
  70.  
  71.  
  72. -- part 17 (button)
  73. -- low flags: 80
  74. -- high flags: A002
  75. -- rect: left=1 top=305 right=324 bottom=116
  76. -- title width / last selected line: 0
  77. -- icon id / first selected line: 0 / 0
  78. -- text alignment: 1
  79. -- font id: 0
  80. -- text size: 12
  81. -- style flags: 0
  82. -- line height: 16
  83. -- part name: Unlock the fields
  84. ----- HyperTalk script -----
  85. on mouseUp
  86.   put 1 into i
  87.   repeat with i = 1 to the number of cards
  88.     repeat with j = 1 to the number of bg flds
  89.       set the locktext of bg fld j to false
  90.       add 1 to j
  91.     end repeat
  92.     repeat with k = 1 to the number of cd flds
  93.       set the locktext of cd fld k to false
  94.       add 1 to k
  95.     end repeat
  96.     add 1 to i
  97.   end repeat
  98. end mouseUp
  99.  
  100.  
  101.  
  102. -- part 19 (field)
  103. -- low flags: 81
  104. -- high flags: 0000
  105. -- rect: left=7 top=253 right=271 bottom=101
  106. -- title width / last selected line: 0
  107. -- icon id / first selected line: 0 / 0
  108. -- text alignment: 0
  109. -- font id: 3
  110. -- text size: 12
  111. -- style flags: 0
  112. -- line height: 16
  113. -- part name: WhereWasI
  114.  
  115.  
  116. -- part contents for card part 3
  117. ----- text -----
  118. Click the forward arrow to begin‚Ķ
  119.  
  120. -- part contents for background part 9
  121. ----- text -----
  122. Macintosh Display Card 4‚Ä¢8 and 8‚Ä¢24
  123.  
  124. -- part contents for background part 11
  125. ----- text -----
  126. open0
  127.  
  128. -- part contents for background part 4
  129. ----- text -----
  130. Welcome to a self-paced product training....
  131. Macintosh Display Card 8/24GC
  132. Training Stack
  133.  
  134. -- part contents for background part 5
  135. ----- text -----
  136.  
  137.  
  138.  
  139.  
  140.  
  141.  
  142.  
  143.  
  144.  
  145.  
  146.  
  147.  
  148.  
  149.  
  150.  
  151.